BMF3DModelOption constructor Null safety

BMF3DModelOption(
  1. {required String modelPath,
  2. required String modelName,
  3. double? scale,
  4. bool? zoomFixed,
  5. double? rotateX,
  6. double? rotateY,
  7. double? rotateZ,
  8. double? offsetX,
  9. double? offsetY,
  10. double? offsetZ,
  11. BMF3DModelType? type}
)

3d模型option构造方法

Implementation

BMF3DModelOption(
    {required this.modelPath,
    required this.modelName,
    this.scale,
    this.zoomFixed,
    this.rotateX,
    this.rotateY,
    this.rotateZ,
    this.offsetX,
    this.offsetY,
    this.offsetZ,
    this.type});