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