HostPathVolumeSource.fromJson constructor

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

Creates a HostPathVolumeSource from JSON data.

Implementation

HostPathVolumeSource.fromJson(Map<String, dynamic> json)
    : this(
        path: json['path'],
        type: json['type'],
      );