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
247B

  1. import 'package:equatable/equatable.dart';
  2. class ItemDropDown extends Equatable {
  3. String? key;
  4. String? value;
  5. dynamic data;
  6. ItemDropDown({this.key, this.value, this.data});
  7. @override
  8. List<Object?> get props => [key, value, data];
  9. }