copyWith method
Creates a copy with selected values replaced.
Implementation
FdcErrorIndicatorMarkerStyle copyWith({Color? color, double? size}) {
return FdcErrorIndicatorMarkerStyle(
color: color ?? this.color,
size: size ?? this.size,
);
}