copy method

Implementation

FooterLayoutEntity copy() {
  return FooterLayoutEntity(
    layoutDirection: layoutDirection,
    footerContent: footerContent?.map((e) => e.copy()).toList(),
  );
}