FFUploadDataSettings_Resolution constructor
Implementation
factory FFUploadDataSettings_Resolution({
$core.double? width,
$core.double? height,
}) {
final result = create();
if (width != null) result.width = width;
if (height != null) result.height = height;
return result;
}