noneIfEmpty property

Option<String> get noneIfEmpty

otherwise returns None.

Implementation

Option<String> get noneIfEmpty {
  return Option.from(isEmpty ? null : this);
}