enumVal property

String? get enumVal

Implementation

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