copyWith method

EmployerVerification copyWith({
  1. String? name,
})

Implementation

EmployerVerification copyWith({String? name}) {
  return EmployerVerification(name: name ?? this.name);
}