stack method

Stack stack({
  1. Key key = const Key('no_key'),
})

Implementation

Stack stack({
  Key key = const Key('no_key'),
}) {
  return Stack(
    key: key,
    children: this,
  );
}