EncounteredNonAndroidUiWidgetScreen.fromJson constructor
EncounteredNonAndroidUiWidgetScreen.fromJson(
- Map _json
Implementation
EncounteredNonAndroidUiWidgetScreen.fromJson(core.Map _json)
: this(
distinctScreens: _json.containsKey('distinctScreens')
? _json['distinctScreens'] as core.int
: null,
screenIds: _json.containsKey('screenIds')
? (_json['screenIds'] as core.List)
.map<core.String>((value) => value as core.String)
.toList()
: null,
);