copyWith method

FileFieldBlocBuilderTheme copyWith({
  1. double? aspectRatio,
  2. BoxConstraints? constraints,
})

Implementation

FileFieldBlocBuilderTheme copyWith({
  double? aspectRatio,
  BoxConstraints? constraints,
}) {
  return FileFieldBlocBuilderTheme(
    aspectRatio: aspectRatio ?? this.aspectRatio,
    constraints: constraints ?? this.constraints,
  );
}