isSilentCommand method

Future<bool> isSilentCommand(
  1. Map notification
)

The function isSilentCommand checks if a notification is a silent command.

Args: notification (Map): A map containing the notification data.

Implementation

Future<bool> isSilentCommand(Map notification) async {
  return await _methods.isSilentCommand(notification);
}