ClientScope.fromJson constructor

ClientScope.fromJson(
  1. Map json_
)

Implementation

ClientScope.fromJson(core.Map json_)
  : this(
      restrictedClientApplication:
          json_.containsKey('restrictedClientApplication')
              ? Application.fromJson(
                json_['restrictedClientApplication']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );