PhoneNumber.fromJson constructor

PhoneNumber.fromJson(
  1. Map json_
)

Implementation

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