IndexMatchValue constructor

IndexMatchValue({
  1. String? stringValue,
  2. Int64? intValue,
  3. Int64? uintValue,
  4. StringValue? fieldName,
})

Implementation

factory IndexMatchValue({
  $core.String? stringValue,
  $fixnum.Int64? intValue,
  $fixnum.Int64? uintValue,
  $13.StringValue? fieldName,
}) {
  final $result = create();
  if (stringValue != null) {
    $result.stringValue = stringValue;
  }
  if (intValue != null) {
    $result.intValue = intValue;
  }
  if (uintValue != null) {
    $result.uintValue = uintValue;
  }
  if (fieldName != null) {
    $result.fieldName = fieldName;
  }
  return $result;
}