Green<C>.value constructor

const Green<C>.value({
  1. Key? key,
  2. C? value,
  3. required Widget child,
})

Implementation

const Green.value({
  super.key,
  this.value,
  required this.child,
}) : create = null;