logout static method

Future<void> logout()

Implementation

static Future<void> logout() async {
  var f = File(firebaseAdminCredentialPath!);
  await f.delete();
}