IndexMatchValue constructor
IndexMatchValue({
- String? stringValue,
- Int64? intValue,
- Int64? uintValue,
- StringValue? fieldName,
Implementation
factory IndexMatchValue({
$core.String? stringValue,
$fixnum.Int64? intValue,
$fixnum.Int64? uintValue,
$22.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;
}