copy method

Implementation

@override
BlockquoteComponentViewModel copy() {
  return internalCopy(
    BlockquoteComponentViewModel(
      nodeId: nodeId,
      createdAt: createdAt,
      text: text.copy(),
      textStyleBuilder: textStyleBuilder,
      opacity: opacity,
      selectionColor: selectionColor,
      backgroundColor: backgroundColor,
      borderRadius: borderRadius,
    ),
  );
}