DebugOptions.fromJson constructor
DebugOptions.fromJson(
- Map json_
Implementation
DebugOptions.fromJson(core.Map json_)
: this(
enableDebugging: json_.containsKey('enableDebugging')
? json_['enableDebugging'] as core.bool
: null,
);