phoneNumberTypeListToJson function

List<String> phoneNumberTypeListToJson(
  1. List<PhoneNumberType>? phoneNumberType
)

Implementation

List<String> phoneNumberTypeListToJson(
    List<enums.PhoneNumberType>? phoneNumberType) {
  if (phoneNumberType == null) {
    return [];
  }

  return phoneNumberType.map((e) => enums.$PhoneNumberTypeMap[e]!).toList();
}