mirror of
https://github.com/smmarty/friflex_flutter_starter.git
synced 2025-12-23 01:50:46 +00:00
14 lines
283 B
Dart
14 lines
283 B
Dart
import 'package:equatable/equatable.dart';
|
|
import 'package:meta/meta.dart';
|
|
|
|
@immutable
|
|
abstract class InitializableStepLabel<T> with EquatableMixin {
|
|
final T value;
|
|
|
|
const InitializableStepLabel(this.value);
|
|
|
|
@override
|
|
@mustCallSuper
|
|
List<Object?> get props => [value];
|
|
}
|