media method
Media query of the resource's intended media. Read more...
Implementation
Source media(String value, {bool? removeIf}) {
if (removeIf != true && node.attrs != null) {
VirtualAttr attr = VirtualAttr('media', value);
node.attrs!.add(attr);
}
return this;
}