toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final caseInsensitive = this.caseInsensitive;
  final columnToJsonKeyMappings = this.columnToJsonKeyMappings;
  final convertDotsInJsonKeysToUnderscores =
      this.convertDotsInJsonKeysToUnderscores;
  return {
    if (caseInsensitive != null) 'CaseInsensitive': caseInsensitive,
    if (columnToJsonKeyMappings != null)
      'ColumnToJsonKeyMappings': columnToJsonKeyMappings,
    if (convertDotsInJsonKeysToUnderscores != null)
      'ConvertDotsInJsonKeysToUnderscores':
          convertDotsInJsonKeysToUnderscores,
  };
}