canHandleStyle method

Future<bool> canHandleStyle()

Implementation

Future<bool> canHandleStyle() async {
  if (_canHanldeStyle == null) {
    try {
      await checkStyleTable();
    } catch (e) {
      // ignore, needed only to get bool
    }
  }
  return _canHanldeStyle!;
}