copyWith method

SetPassportElementErrors copyWith({
  1. int? userId,
  2. List<InputPassportElementError>? errors,
})

Implementation

SetPassportElementErrors copyWith({
  int? userId,
  List<InputPassportElementError>? errors,
}) =>
    SetPassportElementErrors(
      userId: userId ?? this.userId,
      errors: errors ?? this.errors,
    );