sendSei method

Future<int> sendSei(
  1. String sei
)

Implementation

Future<int> sendSei(String sei) async {
  int code = await _channel.invokeMethod('sendSei', sei) ?? -1;
  return code;
}