version method

Future version()

Get version of backend api.

Api.version().then((res) => print('Api.version(): $res'));

Implementation

Future<dynamic> version() {
  return request({'route': 'app.version'});
}