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,
);