FaceShapeBeautyOptions

Face shaping style options.

class FaceShapeBeautyOptions {

  const FaceShapeBeautyOptions({this.shapeStyle, this.styleIntensity});

  @JsonKey(name: 'shapeStyle')
  final FaceShapeBeautyStyle? shapeStyle;

  @JsonKey(name: 'styleIntensity')
  final int? styleIntensity;

  factory FaceShapeBeautyOptions.fromJson(Map<String, dynamic> json) =>
      _$FaceShapeBeautyOptionsFromJson(json);

  Map<String, dynamic> toJson() => _$FaceShapeBeautyOptionsToJson(this);
}

Properties

shapeStyle
Face shaping style. See FaceShapeBeautyStyle.
styleIntensity
Face shaping style intensity. Value range is [0,100], with a default value of 0.0, indicating no face shaping effect. The higher the value, the more noticeable the modification.