tenant_doc_state.dart 350 B

123456789101112131415161718192021
  1. class TenantDocState {
  2. final List<String> docList;
  3. final String type;
  4. const TenantDocState({
  5. required this.docList,
  6. required this.type,
  7. });
  8. TenantDocState copyWith({
  9. List<String>? docList,
  10. String? type,
  11. }) {
  12. return TenantDocState(
  13. docList: docList ?? this.docList,
  14. type: type ?? this.type,
  15. );
  16. }
  17. }