AndroidConfiguration constructor
Implementation
factory AndroidConfiguration({
$core.double? aspectTolerance,
$core.bool? useAutoFocus,
}) {
final _result = create();
if (aspectTolerance != null) {
_result.aspectTolerance = aspectTolerance;
}
if (useAutoFocus != null) {
_result.useAutoFocus = useAutoFocus;
}
return _result;
}