DebugReassembleConfig constructor Null safety
- {String? widgetName}
Create a new DebugReassembleConfig.
Throws a FlutterError if this is called in profile or release mode.
Implementation
DebugReassembleConfig({
this.widgetName,
}) {
if (!kDebugMode) {
throw FlutterError('Cannot instantiate DebugReassembleConfig in profile or release mode.');
}
}