VolumeQuantity.fromJson constructor

VolumeQuantity.fromJson(
  1. Map json_
)

Implementation

VolumeQuantity.fromJson(core.Map json_)
  : this(
      milliliters: (json_['milliliters'] as core.num?)?.toDouble(),
      userProvidedUnit: json_['userProvidedUnit'] as core.String?,
    );