addContactNote method
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;
}