handleReceivedMessage method

Future<void> handleReceivedMessage(
  1. Map notificationData,
  2. dynamic callback(
    1. FlyResponse response
    )?
)

This method is used to handle the FCM Push Notification Payload.

Implementation

Future<void> handleReceivedMessage(
    Map notificationData, Function(FlyResponse response)? callback) {
  throw UnimplementedError('has not been implemented.');
}