VectorTile_Value constructor

VectorTile_Value({
  1. String? stringValue,
  2. double? floatValue,
  3. double? doubleValue,
  4. Int64? intValue,
  5. Int64? uintValue,
  6. Int64? sintValue,
  7. bool? boolValue,
})

Implementation

factory VectorTile_Value({
  $core.String? stringValue,
  $core.double? floatValue,
  $core.double? doubleValue,
  $fixnum.Int64? intValue,
  $fixnum.Int64? uintValue,
  $fixnum.Int64? sintValue,
  $core.bool? boolValue,
}) {
  final _result = create();
  if (stringValue != null) {
    _result.stringValue = stringValue;
  }
  if (floatValue != null) {
    _result.floatValue = floatValue;
  }
  if (doubleValue != null) {
    _result.doubleValue = doubleValue;
  }
  if (intValue != null) {
    _result.intValue = intValue;
  }
  if (uintValue != null) {
    _result.uintValue = uintValue;
  }
  if (sintValue != null) {
    _result.sintValue = sintValue;
  }
  if (boolValue != null) {
    _result.boolValue = boolValue;
  }
  return _result;
}