getCid static method

Future<String?> getCid()

getCid

Implementation

static Future<String?> getCid() async {
  try {
    return _channel.invokeMethod('getCid');
  } catch (e, stack) {
    MzanalyticsLog.p(e.toString() + stack.toString());
  }
  return "";
}