updateDetails method

Future updateDetails(
  1. UserUpdate update
)

Requests a bulk change of properties for the current user.

update New user details.

Implementation

Future updateDetails(UserUpdate update) {
  return NativeBridge.async(
      'CurrentUser.updateDetails', jsonEncode(update.toJSON()));
}