recognitionNotification method
Setup notification for Move SDK recognition
Implementation
@override
Future<void> recognitionNotification(MoveNotification notification) async {
var map = {
"channelId": notification.channelId,
"channelName": notification.channelName,
"channelDescription": notification.channelDescription,
"contentTitle": notification.contentTitle,
"contentText": notification.contentText,
"imageName": notification.imageName,
};
await methodChannel.invokeMethod(
'recognitionNotification', <String, dynamic>{'notification': map});
}