toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (column != null) 'column': column!,
      if (fields != null) 'fields': fields!,
      if (name != null) 'name': name!,
      if (template != null) 'template': template!,
      if (templateDisplayName != null)
        'templateDisplayName': templateDisplayName!,
    };