setNotificationFromFile static method

Future<bool> setNotificationFromFile(
  1. File file
)

Sets notification from file.

Implementation

static Future<bool> setNotificationFromFile(File file) async {
  return setFromFile(
    file: file,
    action: 'setNotification',
  );
}