$Layer.fromJson constructor

$Layer.fromJson(
  1. Map json_
)

Implementation

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