copyWith method

LoadingThemeData copyWith([
  1. LoadingThemeDataNullable? override
])

Implementation

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