History.fromJson constructor
History.fromJson(
- Map json_
Implementation
History.fromJson(core.Map json_)
: this(
displayName: json_.containsKey('displayName')
? json_['displayName'] as core.String
: null,
historyId: json_.containsKey('historyId')
? json_['historyId'] as core.String
: null,
name: json_.containsKey('name') ? json_['name'] as core.String : null,
testPlatform: json_.containsKey('testPlatform')
? json_['testPlatform'] as core.String
: null,
);