PeerAuthentication.fromJson constructor

PeerAuthentication.fromJson(
  1. Map<String, dynamic> json
)

Creates a PeerAuthentication from JSON data.

Implementation

PeerAuthentication.fromJson(Map<String, dynamic> json)
    : this(
        apiVersion: json['apiVersion'],
        kind: json['kind'],
        metadata: json['metadata'] != null
            ? ObjectMeta.fromJson(json['metadata'])
            : null,
        spec: json['spec'] != null
            ? PeerAuthenticationSpec.fromJson(json['spec'])
            : null,
        status: json['status'] != null
            ? PeerAuthenticationStatus.fromJson(json['status'])
            : null,
      );