AuctionContext.fromJson constructor
AuctionContext.fromJson(
- Map json_
Implementation
AuctionContext.fromJson(core.Map json_)
: this(
auctionTypes: json_.containsKey('auctionTypes')
? (json_['auctionTypes'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);