setLocalFontsEnabled method

Future<void> setLocalFontsEnabled(
  1. bool enabled
)

Enables/disables rendering of local CSS fonts (enabled by default). enabled Whether rendering of local fonts is enabled.

Implementation

Future<void> setLocalFontsEnabled(bool enabled) async {
  await _client.send('CSS.setLocalFontsEnabled', {
    'enabled': enabled,
  });
}