toJson method

  1. @override
Map<String, dynamic> toJson()
override

Converts the identify data to a JSON representation.

Implementation

@override
/// Converts the identify data to a JSON representation.
Map<String, dynamic> toJson() {
  return {...super.toJson(), 'userId': userId};
}