CellInfo.fromJson constructor

CellInfo.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory CellInfo.fromJson(Map<String, dynamic> json) {
  return CellInfo(
    mcc: json['mcc'],
    mnc: json['mnc'],
    lac: json['lac'],
    cid: json['cid'],
    signalStrength: json['signal_strength'],
  );
}