copyWith method

OrgId copyWith({
  1. int? value,
})

Implementation

OrgId copyWith({
  int? value
}) {
  return OrgId(
    value ?? this.value
  );
}