openExistingContact static method

Future<Contact> openExistingContact(
  1. Contact contact, {
  2. bool iOSLocalizedLabels = true,
  3. bool androidLocalizedLabels = true,
})

Implementation

static Future<Contact> openExistingContact(Contact contact,
    {bool iOSLocalizedLabels = true,
    bool androidLocalizedLabels = true}) async {
  dynamic result = await _channel.invokeMethod(
    'openExistingContact',
    <String, dynamic>{
      'contact': Contact._toMap(contact),
      'iOSLocalizedLabels': iOSLocalizedLabels,
      'androidLocalizedLabels': androidLocalizedLabels,
    },
  );
  return _handleFormOperation(result);
}