BatchResult constructor

BatchResult({
  1. required List<String> stringValues,
  2. required List<bool> boolValues,
  3. required List<int> intValues,
  4. required List<int> largeIntValues,
  5. required List<double> doubleValues,
})

Creates a BatchResult with the given maps of values.

Parameters

  • stringValues: List of string values.
  • boolValues: List of boolean values.
  • intValues: List of 32-bit integer values.
  • largeIntValues: List of 64-bit integer values.
  • doubleValues: List of double values.

Implementation

BatchResult({
  required this.stringValues,
  required this.boolValues,
  required this.intValues,
  required this.largeIntValues,
  required this.doubleValues,
});