fromJson static method

PremiumFeatureBackgroundForBoth? fromJson(
  1. Map<String, dynamic>? json
)
override

Implementation

static PremiumFeatureBackgroundForBoth? fromJson(Map<String, dynamic>? json) {
  if (json == null) {
    return null;
  }

  return const PremiumFeatureBackgroundForBoth();
}