ResponseMeta.fromJson constructor

ResponseMeta.fromJson(
  1. Map<String, Object?>? data
)

Implementation

ResponseMeta.fromJson(Map<String, Object?>? data)
    : totalCount = data?['total_count'] as int?,
      filterCount = data?['filter_count'] as int?;