build method

  1. @override
Widget build(
  1. BuildContext context
)
override

Builds the widget tree by delegating to builder with the current device type.

Implementation

@override
Widget build(BuildContext context) {
  return builder(context, DeviceDetector.type);
}