classList property
Get the list of classes
Implementation
List<String> get classList =>
(className?.split(' ') ?? const []).where((s) => s.isNotEmpty).toList();
Get the list of classes
List<String> get classList =>
(className?.split(' ') ?? const []).where((s) => s.isNotEmpty).toList();