AndroidConfiguration constructor

AndroidConfiguration({
  1. double? aspectTolerance,
  2. bool? useAutoFocus,
  3. String? appBarTitle,
})

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;
}