bind static method

Future<void> bind(
  1. String key,
  2. String value
)

绑定业务 ID。key 为业务 ID 的名,value 为业务 ID 的值

Implementation

static Future<void> bind(String key, String value) async {
  return await _channel.invokeMethod("bind", [key, value]);
}