cancelSession static method Null safety

Future<void> cancelSession()

Implementation

static Future<void> cancelSession() async {
  await _channel
      .invokeMethod(
    'multisessionUssdCancel',
  )
      .catchError((e) {
    throw e;
  });
}