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