userMetadata property

Map<String, dynamic> get userMetadata

Implementation

Map<String, dynamic> get userMetadata => _userMetadata;
set userMetadata (Map<String, dynamic> value)

Sets the metadata for the user and notifies listeners of the change.

Implementation

set userMetadata(Map<String, dynamic> value) {
  _userMetadata = value;
  notifyListeners();
}