copyWith method
Implementation
InputOTPTheme copyWith({
ValueGetter<double?>? spacing,
ValueGetter<double?>? height,
}) {
return InputOTPTheme(
spacing: spacing == null ? this.spacing : spacing(),
height: height == null ? this.height : height(),
);
}