getGoogleIcon static method

Image getGoogleIcon({
  1. double height = _Dimens.ICON_SIZE,
  2. double width = _Dimens.ICON_SIZE,
})

Implementation

static Image getGoogleIcon({double height = _Dimens.ICON_SIZE, double width = _Dimens.ICON_SIZE}) {
  return _getAssetImageSized(
    'assets/images/google-logo.png',
    height: height,
    width: width,
  );
}