LineBasicMaterial constructor
Implementation
LineBasicMaterial([Map<String, dynamic>? parameters]) : super() {
type = 'LineBasicMaterial';
color = Color(1, 1, 1);
linewidth = 1;
linecap = 'round'; // 'butt', 'round' and 'square'.
linejoin = 'round'; // 'round', 'bevel' and 'miter'.
fog = true;
setValues(parameters);
}