CellId.fromMap constructor

CellId.fromMap(
  1. Map map
)

Implementation

factory CellId.fromMap(Map<dynamic, dynamic> map) {
  return CellId(
    cid: map['cid'] ?? 0,
    lac: map['lac'] ?? 0,
  );
}