create static method
Future<InstrumentationEvent>
create({
- String? eventId,
- int startTime = 0,
- int endTime = 0,
- String? name,
- Map<
String, dynamic> ? attributes, - String? sessionId,
- int sequenceId = 0,
- String? senderId,
- Map<
String, dynamic> ? senderContext, - SchemaType? schemaType,
- EventType? eventType,
- ErrorType? errorType,
- DeviceAppAttributes? deviceAppAttributes,
- String? connectionType,
- String? senderParentId,
- int sessionStartTime = 0,
- Map<
String, dynamic> ? page, - Map<
String, dynamic> ? previousPage, - Map<
String, dynamic> ? marks,
Implementation
static Future<InstrumentationEvent> create(
{String? eventId,
int startTime = 0,
int endTime = 0,
String? name,
Map<String, dynamic>? attributes,
String? sessionId,
int sequenceId = 0,
String? senderId,
Map<String, dynamic>? senderContext,
SchemaType? schemaType,
EventType? eventType,
ErrorType? errorType,
DeviceAppAttributes? deviceAppAttributes,
String? connectionType,
String? senderParentId,
int sessionStartTime = 0,
Map<String, dynamic>? page,
Map<String, dynamic>? previousPage,
Map<String, dynamic>? marks}) =>
_plugin.create(
eventId,
startTime,
endTime,
name,
attributes,
sessionId,
sequenceId,
senderId,
senderContext,
schemaType,
eventType,
errorType,
deviceAppAttributes,
connectionType,
senderParentId,
sessionStartTime,
page,
previousPage,
marks);