VolumeVolumeInfoDimensions.fromJson constructor

VolumeVolumeInfoDimensions.fromJson(
  1. Map json_
)

Implementation

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