copyWith method

VCardOrganization copyWith(
  1. List<String>? units
)

Creates a copy of this VCardOrganization but with the given fields replaced with the new values.

Implementation

VCardOrganization copyWith(List<String>? units) => VCardOrganization(units ?? this.units);