file_search_post.dart 148 B

12345678910
  1. class FileSearchPost{
  2. String? fileType;
  3. FileSearchPost({this.fileType});
  4. Map<String, dynamic> toJson() => {
  5. "fileType": fileType
  6. };
  7. }