unbind static method

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

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

Implementation

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