restore method

Future<List<int>> restore()

Implementation

Future<List<int>> restore(){
  stdout.writeln('Restore not supported with this provider.');
  var c = Completer();
  c.complete(null);
  return c.future.then((value) => value as List<int>);
}