GenAiFunctionErrorStats.fromJson constructor
GenAiFunctionErrorStats.fromJson(
- Map json_
Implementation
GenAiFunctionErrorStats.fromJson(core.Map json_)
: this(
errors: (json_['errors'] as core.List?)
?.map((value) => value as core.String)
.toList(),
numFailedRows: json_['numFailedRows'] as core.String?,
);