hostedUri property

Uri hostedUri

The uri of the registry where bricks are hosted.

Implementation

static Uri get hostedUri {
  final environment = testEnvironment ?? Platform.environment;
  return Uri.parse(
    environment['MASON_HOSTED_URL'] ?? 'https://registry.brickhub.dev',
  );
}