fromMap static method
Implementation
static PresetAmount fromMap(Map<String, dynamic> map) {
return PresetAmount(
id: map['id'],
amount: map['amount'],
promotionAmount: map['promotionAmount'],
isMostPopular: map['isMostPopular'],
);
}