copyWith method

ContentTemplateCreateSpace copyWith({
  1. String? key,
})

Implementation

ContentTemplateCreateSpace copyWith({String? key}) {
  return ContentTemplateCreateSpace(
    key: key ?? this.key,
  );
}