copyWith method

BlockEditingValue copyWith({
  1. String? text,
})

Implementation

BlockEditingValue copyWith({String? text}) {
  return BlockEditingValue(text: text ?? this.text);
}