addContactNote method

  1. @override
Future<bool> addContactNote({
  1. required String contactId,
  2. required String note,
})
override

Implementation

@override
Future<bool> addContactNote({
  required String contactId,
  required String note,
}) async {
  final bool success = await methodChannel.invokeMethod('addContactNote', {
    'contactId': contactId,
    'note': note,
  });
  return success;
}