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.
17 lines
359 B
17 lines
359 B
1 month ago
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'sku_json.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
class SkuJson {
|
||
|
String? skuId = '';
|
||
|
int? skuPrice = 0;
|
||
|
int? skuStock = 0;
|
||
|
|
||
|
SkuJson();
|
||
|
|
||
|
factory SkuJson.fromJson(Map<String, dynamic> json) => _$SkuJsonFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => _$SkuJsonToJson(this);
|
||
|
|
||
|
}
|