copyWith method

ContentPropertyCreate copyWith({
  1. String? key,
  2. dynamic value,
})

Implementation

ContentPropertyCreate copyWith({String? key, dynamic value}) {
  return ContentPropertyCreate(
    key: key ?? this.key,
    value: value ?? this.value,
  );
}