added initialization scope & handling initialization state in runtime example

This commit is contained in:
Kirill Fokin
2025-05-21 17:13:50 +03:00
parent 18eb7b1fe1
commit 2bd6672fc4
102 changed files with 743 additions and 4006 deletions

View File

@@ -0,0 +1,13 @@
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];
}