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.
 
 
 

9 lines
210 B

  1. part of 'process_units_bloc.dart';
  2. abstract class ProcessUnitsEvent extends Equatable {
  3. const ProcessUnitsEvent();
  4. @override
  5. List<Object> get props => [];
  6. }
  7. class ProcessUnit extends ProcessUnitsEvent{}