copyWith method

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

Implementation

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