LineDashedMaterial constructor

LineDashedMaterial([
  1. Map<MaterialProperty, dynamic>? parameters
])

parameters - (optional) an object with one or more properties defining the material's appearance. Any property of the material (including any property inherited from LineBasicMaterial) can be passed in here.

Implementation

LineDashedMaterial([Map<MaterialProperty, dynamic>? parameters]) : super() {
  type = 'LineDashedMaterial';
  scale = 1;
  dashSize = 3;
  gapSize = 1;
  setValues(parameters);
}