PhotoSettings constructor
PhotoSettings({
- FillLightMode? fillLightMode,
- double? imageHeight,
- double? imageWidth,
- bool? redEyeReduction,
Implementation
factory PhotoSettings(
{FillLightMode? fillLightMode,
double? imageHeight,
double? imageWidth,
bool? redEyeReduction}) =>
PhotoSettings._(
fillLightMode: fillLightMode?.value ?? undefined,
imageHeight: imageHeight ?? undefined,
imageWidth: imageWidth ?? undefined,
redEyeReduction: redEyeReduction ?? undefined);