copyWith method

IdentityVerificationTemplateReference copyWith({
  1. String? id,
  2. num? version,
})

Implementation

IdentityVerificationTemplateReference copyWith({String? id, num? version}) {
  return IdentityVerificationTemplateReference(
      id: id ?? this.id, version: version ?? this.version);
}