toJson method

Map<String, dynamic> toJson()

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,
  };
}