validPrevious property

String? get validPrevious

Get previous as nullable (converts empty string to null)

Implementation

String? get validPrevious {
  return previous.isEmpty ? null : previous;
}