saveGame method

Future<bool> saveGame(
  1. List<int> saveBytes
)

Implementation

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);
}