fromJson static method
Inherited by: GiftResalePriceGram GiftResalePriceStar
Implementation
static GiftResalePriceGram? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return GiftResalePriceGram(
gramCentCount: (json['gram_cent_count'] as int?) ?? 0,
);
}