enableSei method

Future<int> enableSei(
  1. bool enable
)

Implementation

Future<int> enableSei(bool enable) async {
  int code = await _channel.invokeMethod('enableSei', enable) ?? -1;
  return code;
}