PhoneNumber.fromJson constructor

PhoneNumber.fromJson(
  1. Map json_
)

Implementation

PhoneNumber.fromJson(core.Map json_)
    : this(
        phoneNumber: json_.containsKey('phoneNumber')
            ? json_['phoneNumber'] as core.String
            : null,
        type: json_.containsKey('type') ? json_['type'] as core.String : null,
      );