listProjects method

Future<void> listProjects()

Lists all Firebase projects associated with the currently authenticated account.

Implementation

Future<void> listProjects() async {
  await run('firebase', ['projects:list']);
}