mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-02 23:17:17 +00:00
28 lines
788 B
Dart
28 lines
788 B
Dart
part of 'provider_volume_cubit.dart';
|
|
|
|
class ApiProviderVolumeState extends ServerInstallationDependendState {
|
|
const ApiProviderVolumeState(this._volumes, this.status, this.isResizing);
|
|
|
|
const ApiProviderVolumeState.initial()
|
|
: this(const [], LoadingStatus.uninitialized, false);
|
|
final List<ServerVolume> _volumes;
|
|
final LoadingStatus status;
|
|
final bool isResizing;
|
|
|
|
List<ServerVolume> get volumes => _volumes;
|
|
|
|
ApiProviderVolumeState copyWith({
|
|
final List<ServerVolume>? volumes,
|
|
final LoadingStatus? status,
|
|
final bool? isResizing,
|
|
}) =>
|
|
ApiProviderVolumeState(
|
|
volumes ?? _volumes,
|
|
status ?? this.status,
|
|
isResizing ?? this.isResizing,
|
|
);
|
|
|
|
@override
|
|
List<Object?> get props => [_volumes, status, isResizing];
|
|
}
|