sendContact method

Future<void> sendContact(
  1. ContactBean info
)

Implementation

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