setFontconfigConfigurationPath method Null safety
- String path
Sets and overrides fontconfig configuration directory.
Implementation
Future<void> setFontconfigConfigurationPath(String path) async {
try {
await _methodChannel
.invokeMethod('setFontconfigConfigurationPath', {'path': path});
} on PlatformException catch (e) {
print('Plugin setFontconfigConfigurationPath error: ${e.message}');
}
}