GlusterfsVolumeSource.fromJson constructor

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

Creates a GlusterfsVolumeSource from JSON data.

Implementation

GlusterfsVolumeSource.fromJson(Map<String, dynamic> json)
    : this(
        endpoints: json['endpoints'],
        path: json['path'],
        readOnly: json['readOnly'],
      );