getString property

String? get getString

Implementation

String? get getString {
  if (rawValue is! String) return null;
  return rawValue;
}