copyWith method
Implementation
NomoTextButtonThemeData copyWith(
[NomoTextButtonThemeDataNullable? override]) {
return NomoTextButtonThemeData(
foregroundColor: override?.foregroundColor ?? foregroundColor,
borderRadius: override?.borderRadius ?? borderRadius,
padding: override?.padding ?? padding,
);
}