toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (array != null) 'array': array!,
      if (arrayLength != null) 'arrayLength': arrayLength!,
      if (autoGenerated != null) 'autoGenerated': autoGenerated!,
      if (charset != null) 'charset': charset!,
      if (collation != null) 'collation': collation!,
      if (comment != null) 'comment': comment!,
      if (customFeatures != null) 'customFeatures': customFeatures!,
      if (dataType != null) 'dataType': dataType!,
      if (fractionalSecondsPrecision != null)
        'fractionalSecondsPrecision': fractionalSecondsPrecision!,
      if (length != null) 'length': length!,
      if (nullable != null) 'nullable': nullable!,
      if (precision != null) 'precision': precision!,
      if (scale != null) 'scale': scale!,
      if (setValues != null) 'setValues': setValues!,
      if (udt != null) 'udt': udt!,
    };