TagFilter.fromJson constructor

TagFilter.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory TagFilter.fromJson(Map<String, dynamic> json) {
  return TagFilter(
    key: json['Key'] as String?,
    type: (json['Type'] as String?)?.toTagFilterType(),
    value: json['Value'] as String?,
  );
}