QueryCountByStatus.fromJson constructor

QueryCountByStatus.fromJson(
  1. Map json_
)

Implementation

QueryCountByStatus.fromJson(core.Map json_)
  : this(
      count: json_['count'] as core.String?,
      statusCode: json_['statusCode'] as core.int?,
    );