$IngressSource.fromJson constructor

$IngressSource.fromJson(
  1. Map json_
)

Implementation

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