close static method

Future<int?> close(
  1. int? engineId
)

Implementation

static Future<int?> close(int? engineId) async {
  await _methodChannel.invokeMethod("close", engineId);
  return engineId;
}