deleteCard method

dynamic deleteCard(
  1. String deviceId,
  2. String uid
)

通过蓝牙删除卡

Implementation

deleteCard(String deviceId, String uid) async {
  return await methodChannel
      .invokeMethod("deleteCard", {"deviceId": deviceId, "uid": uid});
}