fromJson static method

PaginationPage? fromJson(
  1. dynamic value
)

Returns a new PaginationPage instance and imports its values from value if it's a Map, null otherwise.

Implementation

// ignore: prefer_constructors_over_static_methods
static PaginationPage? fromJson(dynamic value) {
  if (value is Map) {
    final json = value.cast<String, dynamic>();
    return PaginationPage(
      number: mapValueOfType<int>(json, r'number'),
      links: Links.mapFromJson(json[r'links']),
    );
  }
  return null;
}