ReadableTableScope constructor

const ReadableTableScope({
  1. Key? key,
  2. required ChangeNotifier controller,
  3. required Widget child,
})

Implementation

const ReadableTableScope({super.key, required this.controller, required super.child})
    : super(notifier: controller);