MorphShared constructor

const MorphShared({
  1. Key? key,
  2. required String tag,
  3. required Widget child,
  4. bool enabled = true,
})

Implementation

const MorphShared({
  super.key,
  required this.tag,
  required this.child,
  this.enabled = true,
});