copyWith method

FlutterDeckImageSlideThemeData copyWith({
  1. TextStyle? labelTextStyle,
})

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

Implementation

FlutterDeckImageSlideThemeData copyWith({TextStyle? labelTextStyle}) {
  return FlutterDeckImageSlideThemeData(labelTextStyle: labelTextStyle ?? this.labelTextStyle);
}