resetNotifySettings method

Future<Result<Boolean>> resetNotifySettings()

Reset Notify Settings.

ID: db7e1747.

Implementation

Future<Result<Boolean>> resetNotifySettings() async {
  // Preparing the request.
  final request = AccountResetNotifySettings();

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

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