copyWith method
Implementation
VentasTheme copyWith({
Color? primaryColor,
TextTheme? textTheme,
Size? size,
// Add more properties to customize as needed.
}) {
return VentasTheme._(
themeData.copyWith(
primaryColor: primaryColor ?? themeData.primaryColor,
textTheme: textTheme ?? themeData.textTheme,
),
);
}