InAppProductListing.fromJson constructor
InAppProductListing.fromJson(
- Map json_
Implementation
InAppProductListing.fromJson(core.Map json_)
: this(
benefits: (json_['benefits'] as core.List?)
?.map((value) => value as core.String)
.toList(),
description: json_['description'] as core.String?,
title: json_['title'] as core.String?,
);