fromAsset static method

Future<CssTheme> fromAsset(
  1. String assetPath
)

Load CSS theme from asset file

Implementation

static Future<CssTheme> fromAsset(String assetPath) async {
  final cssContent = await rootBundle.loadString(assetPath);
  return fromString(cssContent);
}