DebugOptions.fromJson constructor

DebugOptions.fromJson(
  1. Map json_
)

Implementation

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