toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final dimensions = this.dimensions;
  final filterType = this.filterType;
  return {
    'Dimensions': dimensions,
    'FilterType': filterType.toValue(),
  };
}