toMap method

Map<String, Object?> toMap()

Converts this feature to a map using the native field names.

Implementation

Map<String, Object?> toMap() {
  return <String, Object?>{
    'name': name,
    'version': version,
    'isGlEsFeature': isGlEsFeature,
  };
}