setUserProperty method

Future<void> setUserProperty({
  1. @required String name,
  2. @required String value,
})

Sets a user property to the given value.

Implementation

Future<void> setUserProperty({
  @required String name,
  @required String value,
}) {
  throw UnimplementedError(
      'setUserProperty() is not implemented on this platform');
}