testWriter static method

Future<bool> testWriter(
  1. BuildContext context,
  2. Test test
)

Generic no-op function compatible with the TestWriter definition.

Implementation

static Future<bool> testWriter(
  BuildContext context,
  Test test,
) async {
  await _showNotSupported(context);
  return false;
}