CropHintsParams.fromJson constructor
CropHintsParams.fromJson(
- Map json_
Implementation
CropHintsParams.fromJson(core.Map json_)
: this(
aspectRatios: json_.containsKey('aspectRatios')
? (json_['aspectRatios'] as core.List)
.map((value) => (value as core.num).toDouble())
.toList()
: null,
);