import 'package:json_annotation/json_annotation.dart'; part 'brand.g.dart'; @JsonSerializable(explicitToJson: true) class Brand { String? name = ''; String? image = ''; String? video = ''; String? desc = ''; String? content = ''; String? icon = ''; int? sort = 0; String? storeId = ''; Brand(); factory Brand.fromJson(Map json) => _$BrandFromJson(json); Map toJson() => _$BrandToJson(this); }