ComponentState.child constructor
ComponentState.child({})
Implementation
factory ComponentState.child({
required Widget child,
String? markdown,
String? codeSample,
required String stateName,
}) =>
ComponentState(
builder: (_, __) => child,
markdown: markdown,
stateName: stateName,
codeSample: codeSample,
);