toMap method
Converts instance to a map.
Implementation
Map<String, dynamic> toMap() {
return {
"async": async,
"crossOrigin": crossOrigin?.toNativeValue(),
"defer": defer,
"id": id,
"integrity": integrity,
"noModule": noModule,
"nonce": nonce,
"referrerPolicy": referrerPolicy?.toNativeValue(),
"type": type,
};
}