copyWithWrapped method

LongreadMaterialCoding copyWithWrapped({
  1. Wrapped<String?>? exerciseUrl,
})

Implementation

LongreadMaterialCoding copyWithWrapped({Wrapped<String?>? exerciseUrl}) {
  return LongreadMaterialCoding(
    exerciseUrl: (exerciseUrl != null ? exerciseUrl.value : this.exerciseUrl),
  );
}