toMap method

Map<String, dynamic> toMap()

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,
  };
}