class PaginationReply { String? nextOffset; PaginationReply({this.nextOffset}); factory PaginationReply.fromJson(Map json) { return PaginationReply( nextOffset: json['next_offset'] as String?, ); } }