resolve method

  1. @override
void resolve(
  1. AFFundamentalThemeState theme
)
override

Implementation

@override
void resolve(AFFundamentalThemeState theme) {
  final c = theme.foreground(color);
  final fs = theme.size(fontSize);
  final fw = theme.weight(weight);
  styleCache = TextStyle(
    color: c,
    fontSize: fs,
    fontWeight: fw,
  );
}