nullIfBlank method

String? nullIfBlank()

Implementation

String? nullIfBlank() {
  if (isNullOrBlank) return null;
  return this;
}