getFacebookIcon static method

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

Implementation

static Image getFacebookIcon({double height = _Dimens.ICON_SIZE, double width = _Dimens.ICON_SIZE}) {
  return _getAssetImageSized(
    'assets/images/facebook-logo.png',
    height: height,
    width: width,
    color: LoginColors.whiteColor
  );
}