copyWith method

LongreadMaterialCoding copyWith({
  1. String? exerciseUrl,
})

Implementation

LongreadMaterialCoding copyWith({String? exerciseUrl}) {
  return LongreadMaterialCoding(exerciseUrl: exerciseUrl ?? this.exerciseUrl);
}