CenterTheWidgets constructor

const CenterTheWidgets({
  1. Key? key,
  2. required Widget child,
  3. Color color = const Color(0xfff8f8f8),
  4. double maxWidthToResize = 600,
  5. bool enabled = kIsWeb,
  6. ImageProvider<Object>? edgesImage,
})

Implementation

const CenterTheWidgets({
  Key? key,
  required this.child,
  this.color = const Color(0xfff8f8f8),
  this.maxWidthToResize = 600,
  this.enabled = kIsWeb,
  this.edgesImage,
}) : super(key: key);