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,
      );