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