copy method

Implementation

CaptionLayoutEntity copy() {
  return CaptionLayoutEntity(
    layoutDirection: layoutDirection,
    mainCaption: mainCaption?.copy(),
    subCaption: subCaption?.copy(),
  );
}