Business Login Flutter Apps
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- part of 'save_unit_bloc.dart';
-
- abstract class SaveUnitEvent extends Equatable {
- const SaveUnitEvent();
- @override
- List<Object> get props => [];
- }
-
- class Save extends SaveUnitEvent {
- final List<Blob> blobs;
- final Unit unit;
- const Save({required this.blobs, required this.unit});
- }
|