MetadataValueFilter constructor

MetadataValueFilter({
  1. List<int>? value,
  2. 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;
}