wip basics for bloc based state management
This commit is contained in:
@ -0,0 +1,10 @@
|
||||
import 'package:freezed_annotation/freezed_annotation.dart';
|
||||
|
||||
part 'marianum_message_state.freezed.dart';
|
||||
|
||||
@freezed
|
||||
class MarianumMessageState with _$MarianumMessageState {
|
||||
const factory MarianumMessageState({
|
||||
required List<String> test
|
||||
}) = _MarianumMessageState;
|
||||
}
|
Reference in New Issue
Block a user