CreativeDealAssociation.fromJson constructor
CreativeDealAssociation.fromJson(
- Map _json
Implementation
CreativeDealAssociation.fromJson(core.Map _json)
: this(
accountId: _json.containsKey('accountId')
? _json['accountId'] as core.String
: null,
creativeId: _json.containsKey('creativeId')
? _json['creativeId'] as core.String
: null,
dealsId: _json.containsKey('dealsId')
? _json['dealsId'] as core.String
: null,
);