Lease.fromJson constructor

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

Creates a Lease from JSON data.

Implementation

Lease.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 ? LeaseSpec.fromJson(json['spec']) : null,
      );