copyWith method
Implementation
DataCollectionResultCommonModel copyWith(
{String? dataCollectionId,
dynamic $value,
dynamic jsonSchema,
String? rationale}) {
return DataCollectionResultCommonModel(
dataCollectionId: dataCollectionId ?? this.dataCollectionId,
$value: $value ?? this.$value,
jsonSchema: jsonSchema ?? this.jsonSchema,
rationale: rationale ?? this.rationale);
}