GetCustomerUserStatsResponse.fromJson constructor

GetCustomerUserStatsResponse.fromJson(
  1. Map json_
)

Implementation

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