container method

  1. @deprecated
Container container({
  1. double? width = double.infinity,
  2. double? height = double.infinity,
  3. Decoration? decoration,
})

Implementation

@deprecated
Container container({double? width = double.infinity, double? height = double.infinity, Decoration? decoration}) => Container(width: width, height: height, child: this, alignment: Alignment.center, decoration: decoration);