copyWith method

InputPassportElementErrorSourceDataField copyWith({
  1. String? fieldName,
  2. String? dataHash,
})

Implementation

InputPassportElementErrorSourceDataField copyWith({
  String? fieldName,
  String? dataHash,
}) => InputPassportElementErrorSourceDataField(
  fieldName: fieldName ?? this.fieldName,
  dataHash: dataHash ?? this.dataHash,
);