updateFriendNoteText method
Implementation
Future<void> updateFriendNoteText({
@required String username,
@required String noteText,
String appKey,
}) async {
await _channel.invokeMethod('updateFriendNoteText',
{
'username': username,
'noteText': noteText,
'appKey': appKey,
}..removeWhere((key,value) => value == null));
return;
}