MetadataValueFilter constructor
MetadataValueFilter({
- List<
int> ? value, - ByteFilterMethod? method,
Implementation
factory MetadataValueFilter({
$core.List<$core.int>? value,
$1.ByteFilterMethod? method,
}) {
final result = create();
if (value != null) result.value = value;
if (method != null) result.method = method;
return result;
}