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.
 
 
 

13 lines
262 B

  1. part of 'get_images_bloc.dart';
  2. abstract class GetImagesEvent extends Equatable {
  3. const GetImagesEvent();
  4. @override
  5. List<Object> get props => [];
  6. }
  7. class GetImages extends GetImagesEvent{
  8. const GetImages({required this.mesin});
  9. final String mesin;
  10. }