getDeviceInfo method

Future<NotificationDeviceInfo?> getDeviceInfo()

Implementation

Future<NotificationDeviceInfo?> getDeviceInfo() => guardZebra(() async {
      final m = await _api.getDeviceInfo();
      return m == null ? null : _try(m);
    });