Flutter – Is it possible to create a String extension `isEmptyOrNull` in dart?
First off let's define some criteria for this extension: It should return true if the object is null or an empty string. I should be able to use it on a chained nullable object. I should not have to use…