executeAndFetchOrNulls method
Execute this statement and return the output.
Implementation
Future<(A?, B?, C?, D?, E?, F?)> executeAndFetchOrNulls() async =>
await executeAndFetch() ?? (null, null, null, null, null, null);
Execute this statement and return the output.
Future<(A?, B?, C?, D?, E?, F?)> executeAndFetchOrNulls() async =>
await executeAndFetch() ?? (null, null, null, null, null, null);