$Handler.fromJson constructor

$Handler.fromJson(
  1. Map json_
)

Implementation

$Handler.fromJson(core.Map json_)
    : this(
        scriptPath: json_.containsKey('scriptPath')
            ? json_['scriptPath'] as core.String
            : null,
      );