setUser method

Future<void> setUser(
  1. dynamic userID,
  2. Map<String, dynamic> attributes
)

Implementation

Future<void> setUser(
  userID,
  Map<String, dynamic> attributes,
) async {
  await _channel.invokeMethod('setUser',
      <String, dynamic>{'user_id': userID, 'attributes': attributes});
}