toMap method
Converts this Icon into a JSON-compatible map.
Implementation
@override
Map<String, Object?> toMap() {
return {
'src': src,
if (mimeType != null) 'mimeType': mimeType,
if (sizes != null) 'sizes': sizes,
if (theme != null) 'theme': theme!.name,
};
}