copyWith method

KemApiV3DevicesIdSignaturesPost$RequestBody copyWith({
  1. String? file,
  2. String? email,
  3. HomeownerConsentActionDTO? action,
  4. String? firstName,
  5. String? lastName,
})

Implementation

KemApiV3DevicesIdSignaturesPost$RequestBody copyWith(
    {String? file,
    String? email,
    enums.HomeownerConsentActionDTO? action,
    String? firstName,
    String? lastName}) {
  return KemApiV3DevicesIdSignaturesPost$RequestBody(
      file: file ?? this.file,
      email: email ?? this.email,
      action: action ?? this.action,
      firstName: firstName ?? this.firstName,
      lastName: lastName ?? this.lastName);
}