HotKeyDetection.fromJson constructor
HotKeyDetection.fromJson(
- Map _json
Implementation
HotKeyDetection.fromJson(core.Map _json)
: this(
hotKeyAge: _json.containsKey('hotKeyAge')
? _json['hotKeyAge'] as core.String
: null,
systemName: _json.containsKey('systemName')
? _json['systemName'] as core.String
: null,
userStepName: _json.containsKey('userStepName')
? _json['userStepName'] as core.String
: null,
);