baseUrl property

Future<String> get baseUrl

改成异步 getter,首次调用时自动初始化

Implementation

static Future<String> get baseUrl async {
  await _ensureInitialized();
  return 'https://${_remoteId ?? ""}.aomuc.link';
}