config static method
Configures the Segment SDK.
This should be called once during app initialization with the appropriate write key and integration options.
Implementation
static Future<void> config({
required SegmentConfig options,
}) {
return _segment.config(
options: options,
);
}