EndpointAuthorization.fromJson constructor

EndpointAuthorization.fromJson(
  1. Map json_
)

Implementation

EndpointAuthorization.fromJson(core.Map json_)
  : this(
      secret: json_['secret'] as core.String?,
      secretSet: json_['secretSet'] as core.bool?,
    );