TelephonyInfo.fromJson constructor

TelephonyInfo.fromJson(
  1. Map json_
)

Implementation

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