Entry<T>.fromJson constructor

Entry<T>.fromJson(
  1. Map<String, dynamic> json,
  2. T fromJsonT(
    1. Object?
    )
)

The constructor fromJson of Contentful Entry Model

Implementation

factory Entry.fromJson(
  Map<String, dynamic> json,
  T Function(Object?) fromJsonT,
) =>
    _$EntryFromJson(json, fromJsonT);