networkImage method

Widget networkImage({
  1. Key key = const Key('no_key'),
  2. required BoxFit fit,
})

Implementation

Widget networkImage({
  Key key = const Key('no_key'),
  required BoxFit fit,
}) {
  return Image.network(
    this,
    fit: fit,
  );
}