noneIfEmpty property

Option<String> get noneIfEmpty

otherwise returns None.

Implementation

@pragma('vm:prefer-inline')
Option<String> get noneIfEmpty {
  return Option.from(isEmpty ? null : this);
}