AwsDiskDetails.fromJson constructor

AwsDiskDetails.fromJson(
  1. Map json_
)

Implementation

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