copyWith method

Organization copyWith({
  1. TypeScreen? type,
  2. int? division,
  3. double? height,
})

Implementation

Organization copyWith({
  TypeScreen? type,
  int? division,
  double? height,
}) {
  return Organization(
    division: division ?? this.division,
    height: height ?? this.height,
  );
}