StaticStyle constructor

const StaticStyle({
  1. Key? key,
  2. required StyleData data,
  3. bool inheritFromParent = true,
  4. required Widget child,
})

Implementation

const StaticStyle({
  Key? key,
  required this.data,
  this.inheritFromParent = true,
  required this.child,
}) : super(key: key);