GptList<T>.fromJson constructor

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

Implementation

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