deepCopy static method

PageModel deepCopy(
  1. PageModel from
)

Implementation

static PageModel deepCopy(PageModel from) {
  var copyOfPageModel = from.copyWith();
  return copyOfPageModel;
}