copyWith method

DateIndicatorStyle copyWith({
  1. Decoration? decoration,
  2. EdgeInsetsGeometry? padding,
  3. TextStyle? textStyle,
  4. String? label,
})

Implementation

DateIndicatorStyle copyWith({
  Decoration? decoration,
  EdgeInsetsGeometry? padding,
  TextStyle? textStyle,
  String? label,
}) {
  return DateIndicatorStyle.raw(
    decoration: decoration ?? this.decoration,
    padding: padding ?? this.padding,
    textStyle: textStyle ?? this.textStyle,
    label: label ?? this.label,
  );
}