Value constructor

Value({
  1. String? stringValue,
  2. int? uint32Value,
  3. Int64? uint64Value,
  4. int? int32Value,
  5. Int64? int64Value,
  6. double? floatValue,
  7. double? doubleValue,
  8. bool? boolValue,
  9. List<int>? bytesValue,
  10. ListString? listStringValue,
  11. ListInt32? listInt32Value,
  12. ListInt64? listInt64Value,
  13. ListuInt32? listuInt32Value,
  14. ListuInt64? listuInt64Value,
  15. ListFloat? listFloatValue,
  16. ListDouble? listDoubleValue,
  17. ListBool? listBoolValue,
  18. ListBytes? listBytesValue,
})

Implementation

factory Value({
  $core.String? stringValue,
  $core.int? uint32Value,
  $fixnum.Int64? uint64Value,
  $core.int? int32Value,
  $fixnum.Int64? int64Value,
  $core.double? floatValue,
  $core.double? doubleValue,
  $core.bool? boolValue,
  $core.List<$core.int>? bytesValue,
  ListString? listStringValue,
  ListInt32? listInt32Value,
  ListInt64? listInt64Value,
  ListuInt32? listuInt32Value,
  ListuInt64? listuInt64Value,
  ListFloat? listFloatValue,
  ListDouble? listDoubleValue,
  ListBool? listBoolValue,
  ListBytes? listBytesValue,
}) {
  final $result = create();
  if (stringValue != null) {
    $result.stringValue = stringValue;
  }
  if (uint32Value != null) {
    $result.uint32Value = uint32Value;
  }
  if (uint64Value != null) {
    $result.uint64Value = uint64Value;
  }
  if (int32Value != null) {
    $result.int32Value = int32Value;
  }
  if (int64Value != null) {
    $result.int64Value = int64Value;
  }
  if (floatValue != null) {
    $result.floatValue = floatValue;
  }
  if (doubleValue != null) {
    $result.doubleValue = doubleValue;
  }
  if (boolValue != null) {
    $result.boolValue = boolValue;
  }
  if (bytesValue != null) {
    $result.bytesValue = bytesValue;
  }
  if (listStringValue != null) {
    $result.listStringValue = listStringValue;
  }
  if (listInt32Value != null) {
    $result.listInt32Value = listInt32Value;
  }
  if (listInt64Value != null) {
    $result.listInt64Value = listInt64Value;
  }
  if (listuInt32Value != null) {
    $result.listuInt32Value = listuInt32Value;
  }
  if (listuInt64Value != null) {
    $result.listuInt64Value = listuInt64Value;
  }
  if (listFloatValue != null) {
    $result.listFloatValue = listFloatValue;
  }
  if (listDoubleValue != null) {
    $result.listDoubleValue = listDoubleValue;
  }
  if (listBoolValue != null) {
    $result.listBoolValue = listBoolValue;
  }
  if (listBytesValue != null) {
    $result.listBytesValue = listBytesValue;
  }
  return $result;
}