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