copyWith method

CustomOverlayThemeData copyWith({
  1. Duration? animationDuration,
})

Implementation

CustomOverlayThemeData copyWith({Duration? animationDuration}) {
  return CustomOverlayThemeData(
    animationDuration: animationDuration ?? this.animationDuration,
  );
}