toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return <String, dynamic>{
    'id': id,
    'type': type,
    'timestamp': timestamp,
    'appLaunchTimestamp': appLaunchTimestamp,
    'sid': sid,
    'device': device.toMap(),
    'properties': properties,
  };
}