GetCustomerIndexStatsResponse.fromJson constructor

GetCustomerIndexStatsResponse.fromJson(
  1. Map json_
)

Implementation

GetCustomerIndexStatsResponse.fromJson(core.Map json_)
    : this(
        averageIndexedItemCount:
            json_['averageIndexedItemCount'] as core.String?,
        stats: (json_['stats'] as core.List?)
            ?.map((value) => CustomerIndexStats.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
      );