EmptyDirVolumeSource.fromJson constructor

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

Creates a EmptyDirVolumeSource from JSON data.

Implementation

EmptyDirVolumeSource.fromJson(Map<String, dynamic> json)
    : this(
        medium: json['medium'],
        sizeLimit: json['sizeLimit'],
      );