LicenseObject.fromMap constructor
LicenseObject.fromMap(
- Map map
Creates a LicenseObject from a map.
Implementation
factory LicenseObject.fromMap(Map map) {
return LicenseObject(name: map['name'], url: map['url']);
}