AwsDiskDetails.fromJson constructor

AwsDiskDetails.fromJson(
  1. Map json_
)

Implementation

AwsDiskDetails.fromJson(core.Map json_)
    : this(
        diskNumber: json_.containsKey('diskNumber')
            ? json_['diskNumber'] as core.int
            : null,
        sizeGb: json_.containsKey('sizeGb')
            ? json_['sizeGb'] as core.String
            : null,
        volumeId: json_.containsKey('volumeId')
            ? json_['volumeId'] as core.String
            : null,
      );