DataTypeCount.fromJson constructor

DataTypeCount.fromJson(
  1. Map json_
)

Implementation

DataTypeCount.fromJson(core.Map json_)
  : this(
      count: json_['count'] as core.String?,
      type: json_['type'] as core.String?,
    );