updateBirthday method

Future<Result<Boolean>> updateBirthday({
  1. BirthdayBase? birthday,
})

Update Birthday.

ID: cc6e0c11.

Implementation

Future<Result<Boolean>> updateBirthday({BirthdayBase? birthday}) async {
  // Preparing the request.
  final request = AccountUpdateBirthday(birthday: birthday);

  // Invoke and wait for response.
  final response = await _c.invoke(request);

  // Return the result.
  return response._to<Boolean>();
}