toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final environment = this.environment;
  final materials = this.materials;
  final parameters = this.parameters;
  return {
    'environment': ?environment,
    'materials': ?materials,
    'parameters': ?parameters,
  };
}