DebugOptions.fromJson constructor

DebugOptions.fromJson(
  1. Map _json
)

Implementation

DebugOptions.fromJson(core.Map _json)
    : this(
        enableHotKeyLogging: _json.containsKey('enableHotKeyLogging')
            ? _json['enableHotKeyLogging'] as core.bool
            : null,
      );