tryCreate static method

NativeBackend? tryCreate()

Try to create a native backend, returning null if it fails.

Implementation

static NativeBackend? tryCreate() {
  try {
    return NativeBackend();
  } catch (_) {
    return null;
  }
}