fromMap static method
override
Construct from Map.
Implementation
static ShippingOption? fromMap(Map<String, dynamic>? _map) {
if (_map == null) return null;
var _ = _map["@type"];
if (_ != CONSTRUCTOR) return null;
var extra = _map['@extra'];
var clientId = _map['@clientId'];
var id = _map['id']! as String;
var title = _map['title']! as String;
var price_parts = List<LabeledPricePart>.from(
(_map["price_parts"] ?? []).map(
(e) => LabeledPricePart.fromMap(e),
),
);
return ShippingOption(
extra: extra,
clientId: clientId,
id: id,
title: title,
price_parts: price_parts,
);
}