brandImage property

AssetImage? brandImage

Implementation

AssetImage? get brandImage {
  String? imgString = returnCardImage(brand);
  if (imgString != null) {
    return AssetImage(imgString, package: "flutter_payments_stripe_sdk");
  }
  return null;
}