doesAppExist method

Future<bool> doesAppExist(
  1. String appId
)

Implementation

Future<bool> doesAppExist(String appId) async {
  var app = await appRepository()!.get(appId);
  return (app != null);
}