parse method

  1. @override
void parse(
  1. BuildContext context
)
override

Implementation

@override
void parse(BuildContext context) {
  final List<String> mappedStyles = styles.split(" ");

  for (var i = 0; i < mappedStyles.length; i++) {
    final String style = mappedStyles[i];
    if (hasPrefix(style)) {
      final prefix = style.split(":");
      if (isValidPrefix(prefix[0])) {
        _apply(prefix[1], prefix[0]);
      }
    } else {
      _apply(style);
    }
  }
}