isSilentCommand method
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);
}