startCustomTracking method
The function "startCustomTracking" is a placeholder that throws an error indicating it has not
been implemented yet.
@param {ProfileSource} sourceType - The sourceType parameter is of type ProfileSource, which is an
enum that represents the type of source for the custom tracking. It could be one of the following
values:
@param {String} source - The source
parameter is a string that represents the source of the
profile. It could be a URL, a file path, or any other identifier that indicates where the profile
data is coming from.
Implementation
Future<String?> startCustomTracking(ProfileSource sourceType, String source) {
throw UnimplementedError('startCustomTracking() has not been implemented.');
}