Value constructor

Value({
  1. double? double_1,
  2. String? string,
  3. Object? object,
  4. Array? array,
  5. List<int>? binData,
  6. String? objectId,
  7. bool? bool_7,
  8. Null? null_8,
  9. int? int_9,
  10. Timestamp? timestamp,
  11. Int64? long,
})

Implementation

factory Value({
  $core.double? double_1,
  $core.String? string,
  Object? object,
  Array? array,
  $core.List<$core.int>? binData,
  $core.String? objectId,
  $core.bool? bool_7,
  Null? null_8,
  $core.int? int_9,
  $0.Timestamp? timestamp,
  $fixnum.Int64? long,
}) {
  final _result = create();
  if (double_1 != null) {
    _result.double_1 = double_1;
  }
  if (string != null) {
    _result.string = string;
  }
  if (object != null) {
    _result.object = object;
  }
  if (array != null) {
    _result.array = array;
  }
  if (binData != null) {
    _result.binData = binData;
  }
  if (objectId != null) {
    _result.objectId = objectId;
  }
  if (bool_7 != null) {
    _result.bool_7 = bool_7;
  }
  if (null_8 != null) {
    _result.null_8 = null_8;
  }
  if (int_9 != null) {
    _result.int_9 = int_9;
  }
  if (timestamp != null) {
    _result.timestamp = timestamp;
  }
  if (long != null) {
    _result.long = long;
  }
  return _result;
}