getUserId method

Future<String?> getUserId()

Get the user id associated with the dev credentials.

Implementation

Future<String?> getUserId() async {
  final credentials = await loadDevCredentials();
  return credentials?.userId;
}