tryCreateSplashByConfig function

void tryCreateSplashByConfig(
  1. Map<String, dynamic> config
)

Function that will be called on unsupported platforms, triggering exception.

Implementation

void tryCreateSplashByConfig(Map<String, dynamic> config) async {
  throw UnsupportedError(
      'This package requires dart:io, which is unsupported by this platform.');
}