backgroundImage method

Widget backgroundImage(
  1. DecorationImage image, {
  2. Key? key,
})

背景图片

Implementation

Widget backgroundImage(
  DecorationImage image, {
  Key? key,
}) =>
    DecoratedBox(
      key: key,
      child: this,
      decoration: BoxDecoration(image: image),
    );