AttributeValue constructor

AttributeValue({
  1. Int64? i,
  2. double? f,
  3. bool? b,
  4. List<int>? s,
})

Implementation

factory AttributeValue({
  $fixnum.Int64? i,
  $core.double? f,
  $core.bool? b,
  $core.List<$core.int>? s,
}) {
  final $result = create();
  if (i != null) {
    $result.i = i;
  }
  if (f != null) {
    $result.f = f;
  }
  if (b != null) {
    $result.b = b;
  }
  if (s != null) {
    $result.s = s;
  }
  return $result;
}