QueryCountByStatus.fromJson constructor

QueryCountByStatus.fromJson(
  1. Map json_
)

Implementation

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