getErrorWidget static method

dynamic getErrorWidget()

Implementation

static getErrorWidget() {
  return Container(
    alignment: Alignment.center,
    child: const SizedBox(
      child: Text("Oops! Something went wrong."),
    ),
  );
}