SystemFeature.fromMap constructor
Creates a SystemFeature from a map returned by the native platform.
Implementation
factory SystemFeature.fromMap(Map<Object?, Object?> map) {
return SystemFeature(
name: _readString(map, 'name'),
version: _readOptionalInt(map, 'version'),
isGlEsFeature: _readBool(map, 'isGlEsFeature'),
);
}