toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final description = this.description;
  final name = this.name;
  final type = this.type;
  final typeSchema = this.typeSchema;
  return {
    'description': ?description,
    'name': ?name,
    'type': ?type,
    'typeSchema': ?typeSchema,
  };
}