copyWith method

ScreenSchemeId copyWith({
  1. int? id,
})

Implementation

ScreenSchemeId copyWith({int? id}) {
  return ScreenSchemeId(
    id: id ?? this.id,
  );
}