toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (dataType != null) 'dataType': dataType!,
      if (defaultValue != null) 'defaultValue': defaultValue!,
      if (description != null) 'description': description!,
      if (jsonSchema != null) 'jsonSchema': jsonSchema!,
      if (nullable != null) 'nullable': nullable!,
      if (parameter != null) 'parameter': parameter!,
    };