getEndpoint method

Future<String?> getEndpoint()

Get the dev endpoint associated with the dev credentials.

Implementation

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