WebServerDistributor constructor

WebServerDistributor({
  1. required FlutterPublish flutterPublish,
  2. required PlatformBuild platformBuild,
  3. required WebServerConnection serverConnection,
  4. required String webServerPath,
})

Implementation

WebServerDistributor({
  required super.flutterPublish,
  required super.platformBuild,
  required this.serverConnection,
  required this.webServerPath,
}) : super(distributorType: PublishDistributorType.webServer);