build method

  1. @override
void build({
  1. BuildContext? testContext,
})
override

Implementation

@override
void build({BuildContext? testContext}) {
  final context = testContext ?? buildContext;
  if (context == null) return;
  if (currentDialog != null) {
    currentDialog!.reBuildChild(context, size);
    return;
  }
  currentScreen.reBuildChild(context, size);
}