copy method

Create a deep copy of this object

Implementation

AddonsFunDetails copy() {
  return AddonsFunDetails(
    idAddonsFunDtls: idAddonsFunDtls,
    createdOn: createdOn,
    updatedBy: updatedBy,
    updatedOn: updatedOn,
    addOnType: addOnType,
    imageName: imageName,
    userDisplayName: userDisplayName,
    createdBy: createdBy,
    funRefId: funRefId,
    funRefVal:
        funRefVal != null ? String.fromCharCodes(funRefVal!.codeUnits) : null,
    // funRefVal: funRefVal,
    isActive: isActive,
    isMarked: isMarked,
    isMarkedImp: isMarkedImp,
    moduleId: moduleId,
    pageElementId: pageElementId,
    transId: transId,
    transType: transType,
  );
}