getAllLayouts method

Future<List<LayoutConfig>> getAllLayouts()

Get all layout configurations

Implementation

Future<List<LayoutConfig>> getAllLayouts() async {
  await _loadConfigsFromStorage();
  return _configCache.values.toList();
}