TelephonyInfo.fromJson constructor

TelephonyInfo.fromJson(
  1. Map json_
)

Implementation

TelephonyInfo.fromJson(core.Map json_)
    : this(
        carrierName: json_['carrierName'] as core.String?,
        iccId: json_['iccId'] as core.String?,
        phoneNumber: json_['phoneNumber'] as core.String?,
      );