enumVal property

String? enumVal

Implementation

String? get enumVal {
  var list = split('.');
  return list.isEmpty ? null : list.last;
}