copyWith method

IdentifyEvent copyWith({
  1. String? customID,
  2. Map<String, dynamic>? properties,
})

Implementation

IdentifyEvent copyWith({String? customID, Map<String, dynamic>? properties}) {
  return IdentifyEvent(
    customID: customID ?? this.customID,
    properties: properties ?? this.properties,
  );
}