identifier static method
Implementation
static Future<TrackModel?> identifier(String activityName, TrackBulider properties, OtherID otherid) async {
try {
TrackModel identifierModel = TrackModel();
identifierModel.activityName = activityName;
identifierModel.properties = properties.properties;
identifierModel.otherid = otherid.trackId;
return identifierModel;
} on PlatformException {}
return null;
}