Principal.fromJson constructor

Principal.fromJson(
  1. Map json_
)

Implementation

Principal.fromJson(core.Map json_)
  : this(
      audience: json_.containsKey('audience')
          ? Audience.fromJson(
              json_['audience'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );