toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() => <String, dynamic>{
      'color': [color!.alpha, color!.red, color!.green, color!.blue],
//        'texture': this.texture,
      'textureBytes': this.textureBytes,
      'metallic': this.metallic,
      'roughness': this.roughness,
      'reflectance': this.reflectance,
    }..removeWhere((String k, dynamic v) => v == null);