setupMultiDisplay method
Initializes the multi-display functionality with the specified configuration.
Parameters:
entrypoints: A list of entry point identifiers for the displaysportBased: Whether to use port-based communication (defaults to false)
This method must be called before using any multi-display features. Platform implementations should:
- Initialize necessary platform-specific display management
- Set up communication channels between displays
- Configure entry points for secondary displays
Throws UnimplementedError if the platform implementation does not override this method.
Implementation
Future<void> setupMultiDisplay(
List<String> entrypoints, {
bool portBased = false,
}) {
throw UnimplementedError('setupMultiDisplay() has not been implemented.');
}