copyWith method

CurseForgeModHashe copyWith({
  1. String? value,
  2. int? algo,
})

Implementation

CurseForgeModHashe copyWith({
  String? value,
  int? algo,
}) {
  return CurseForgeModHashe(
    value: value ?? this.value,
    algo: algo ?? this.algo,
  );
}