getOrganistaionType method

String? getOrganistaionType()

Implementation

String? getOrganistaionType() {
  if (organisationType == null) {
    return null;
  }
  String s = organisationType!.replaceAll("_", " ");
  return "${s[0].toUpperCase()}${s.substring(1)}";
}