Future<bool> saveGame(List<int> saveBytes){ stdout.writeln('Save not supported with this provider.'); var c = Completer(); c.complete(false); return c.future.then((value) => value as bool); }