copyWith method

  1. @override
TriangleNowIndicatorShape copyWith({
  1. Color? color,
  2. double? size,
})
override

Implementation

@override
TriangleNowIndicatorShape copyWith({Color? color, double? size}) {
  return TriangleNowIndicatorShape(
    color: color ?? this.color,
    size: size ?? this.size,
  );
}