toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final name = this.name;
  final catalogId = this.catalogId;
  return {
    'Name': name,
    if (catalogId != null) 'CatalogId': catalogId,
  };
}