setEverId static method

Future<String> setEverId(
  1. String everId
)

Implementation

static Future<String> setEverId(String everId) async {
  String result = await _channel.invokeMethod("setEverId", [everId]);
  return result;
}