copyWith method
Implementation
RCKEmojiPageIndicatorConfig copyWith({
Color? activeColor,
Color? inactiveColor,
double? size,
double? spacing,
double? bottomPadding,
}) {
return RCKEmojiPageIndicatorConfig(
activeColor: activeColor ?? this.activeColor,
inactiveColor: inactiveColor ?? this.inactiveColor,
size: size ?? this.size,
spacing: spacing ?? this.spacing,
bottomPadding: bottomPadding ?? this.bottomPadding,
);
}