$PageInfo.fromJson constructor
      
      $PageInfo.fromJson(
    
    
- Map json_
 
Implementation
$PageInfo.fromJson(core.Map json_)
    : this(
        resultPerPage: json_['resultPerPage'] as core.int?,
        startIndex: json_['startIndex'] as core.int?,
        totalResults: json_['totalResults'] as core.int?,
      );