getBrandAsset method

Future<String> getBrandAsset(
  1. AssetType assetType
)

Implementation

Future<String> getBrandAsset(AssetType assetType) async {
  switch (assetType) {
    case AssetType.appLogo:
      return '';
    case AssetType.backgroundImage:
      return '';
  }
}