saveInBackground method

Future<ParseObject> saveInBackground ()

Saves this object to the server in a background thread.

Returns a Future of ParseObject.

Implementation

Future<ParseObject> saveInBackground() async {
  return _save('saveInBackground');
}