copyWith method
Implementation
LoadingThemeData copyWith([LoadingThemeDataNullable? override]) {
return LoadingThemeData(
color: override?.color ?? color,
strokeWidth: override?.strokeWidth ?? strokeWidth,
);
}
LoadingThemeData copyWith([LoadingThemeDataNullable? override]) {
return LoadingThemeData(
color: override?.color ?? color,
strokeWidth: override?.strokeWidth ?? strokeWidth,
);
}