VolumeVolumeInfoDimensions.fromJson constructor

VolumeVolumeInfoDimensions.fromJson(
  1. Map json_
)

Implementation

VolumeVolumeInfoDimensions.fromJson(core.Map json_)
    : this(
        height: json_['height'] as core.String?,
        thickness: json_['thickness'] as core.String?,
        width: json_['width'] as core.String?,
      );