CodeInterpreterResources.fromJson constructor

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

Implementation

factory CodeInterpreterResources.fromJson(Map<String, dynamic> json) {
  return CodeInterpreterResources(
    fileIds: (json['file_ids'] as List?)?.cast<String>(),
  );
}