executeAndFetchOrNulls method

Future<(A?, B?, C?, D?, E?, F?)> executeAndFetchOrNulls()

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);