copyWith method

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

Implementation

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