AzureDiskVolumeSource.fromJson constructor

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

Creates a AzureDiskVolumeSource from JSON data.

Implementation

AzureDiskVolumeSource.fromJson(Map<String, dynamic> json)
    : this(
        cachingMode: json['cachingMode'],
        diskName: json['diskName'],
        diskURI: json['diskURI'],
        fsType: json['fsType'],
        kind: json['kind'],
        readOnly: json['readOnly'],
      );