copyWith method

PullDownMenuTitleTheme copyWith({
  1. TextStyle? style,
})

Creates a copy of this object with the given fields replaced with the new values.

Implementation

PullDownMenuTitleTheme copyWith({
  TextStyle? style,
}) =>
    PullDownMenuTitleTheme(
      style: style ?? this.style,
    );