cid property

Future<int?> cid

The current cell id (cid)

Implementation

static Future<int?> get cid async {
  if (!Platform.isAndroid) {
    return null;
  }
  var data = await _channel.invokeMethod('cellId');
  var hm = jsonDecode(data);
  return hm["cid"];
}