copyWith method
Implementation
PhysicalDocumentImages copyWith(
{String? originalFront,
String? originalBack,
String? croppedFront,
String? croppedBack,
String? face}) {
return PhysicalDocumentImages(
originalFront: originalFront ?? this.originalFront,
originalBack: originalBack ?? this.originalBack,
croppedFront: croppedFront ?? this.croppedFront,
croppedBack: croppedBack ?? this.croppedBack,
face: face ?? this.face);
}