forked from firka/student-legacy
11 lines
422 B
Dart
Executable File
11 lines
422 B
Dart
Executable File
import 'package:flutter/material.dart';
|
|
|
|
class SubjectGradesContainer extends InheritedWidget {
|
|
const SubjectGradesContainer({Key? key, required Widget child}) : super(key: key, child: child);
|
|
|
|
static SubjectGradesContainer? of(BuildContext context) => context.dependOnInheritedWidgetOfExactType<SubjectGradesContainer>();
|
|
|
|
@override
|
|
bool updateShouldNotify(SubjectGradesContainer oldWidget) => false;
|
|
}
|