CustomBiddingModelReadinessState.fromJson constructor
CustomBiddingModelReadinessState.fromJson(
- Map json_
Implementation
CustomBiddingModelReadinessState.fromJson(core.Map json_)
: this(
advertiserId: json_.containsKey('advertiserId')
? json_['advertiserId'] as core.String
: null,
readinessState: json_.containsKey('readinessState')
? json_['readinessState'] as core.String
: null,
);