tkfLogo static method

Widget tkfLogo({
  1. double? width,
  2. double? height,
})

Implementation

static Widget tkfLogo({double? width, double? height}) {
  return SvgPicture.asset(
    "${path}tkf-logo.svg",
    width: width ?? 64,
    height: height ?? 64,
  );
}