toJson method
Implementation
Map<String, dynamic> toJson() {
final columnDepth = this.columnDepth;
final includeFec = this.includeFec;
final rowLength = this.rowLength;
return {
if (columnDepth != null) 'columnDepth': columnDepth,
if (includeFec != null) 'includeFec': includeFec.toValue(),
if (rowLength != null) 'rowLength': rowLength,
};
}