sendContact method

Future<void> sendContact(
  1. ContactBean info
)

Implementation

Future<void> sendContact(ContactBean info) async {
  String jsonStr = contactBeanToJson(info);
  await mConnMethodChannel
      .invokeMethod("sendContact", <String, String>{"contactBean": jsonStr});
}