copyWith method

OcrMrzDocumentCode copyWith({
  1. String? name,
  2. String? code,
  3. String? type,
})

Implementation

OcrMrzDocumentCode copyWith({String? name, String? code, String? type}) => OcrMrzDocumentCode(name: name ?? this.name, code: code ?? this.code, type: type ?? this.type);