saveUser abstract method

Future<void> saveUser(
  1. User user, {
  2. List<String>? attribNames,
})

Saves the user attributes to the AWS Cognito backend. If attribNames is provided then only those attributes will be saved.

Implementation

Future<void> saveUser(
  // the user to save to the backend
  User user, {
  // the list of attributes to save
  List<String>? attribNames,
});