Includes.fromJson constructor

Includes.fromJson(
  1. Map<String, dynamic> json
)

Includes.fromJson is used to convert the json that is received from the Contentful API into a Includes object. It also generated toJson methods that can be used to convert the Includes object back into json.

Implementation

factory Includes.fromJson(Map<String, dynamic> json) =>
    _$IncludesFromJson(json);