close static method
Implementation
static Future<bool> close({
required String connectionId,
}) async {
final result = await _channel.invokeMethod('close', {
'connectionId': connectionId,
});
ExceptionHandler.checkException(result);
return result == true;
}