BatchResult constructor
BatchResult({})
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,
});