copyWith method

ContentRestrictionsExpandable copyWith({
  1. String? read,
  2. String? update,
})

Implementation

ContentRestrictionsExpandable copyWith({String? read, String? update}) {
  return ContentRestrictionsExpandable(
    read: read ?? this.read,
    update: update ?? this.update,
  );
}