copyWith method

AppEntryPagesEntity copyWith({
  1. String? documentID,
  2. String? entryPageId,
  3. int? minPrivilege,
})

Implementation

AppEntryPagesEntity copyWith({
  String? documentID,
  String? entryPageId,
  int? minPrivilege,
}) {
  return AppEntryPagesEntity(
    entryPageId: entryPageId ?? this.entryPageId,
    minPrivilege: minPrivilege ?? this.minPrivilege,
  );
}