this repo has no description
at main 14 lines 386 B view raw
1import 'package:json_annotation/json_annotation.dart'; 2 3part 'apply_sort_response.g.dart'; 4 5@JsonSerializable() 6class ApplySortResponse { 7 final bool success; 8 9 ApplySortResponse({required this.success}); 10 11 factory ApplySortResponse.fromJson(Map<String, dynamic> json) => 12 _$ApplySortResponseFromJson(json); 13 Map<String, dynamic> toJson() => _$ApplySortResponseToJson(this); 14}