factory Price.fromMap(Map<String, dynamic> map) { return Price( amountMicros: map['amountMicros'] as int, currencyCode: map['currencyCode'] as String, ); }