checkUpdate method

Future<List<Aim>> checkUpdate()

Implementation

Future<List<Aim>> checkUpdate() async {
  try {
    return getAims();
  } catch (ex) {
    rethrow;
  }
}