fromJson static method

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

Implementation

static ContentPartReasoning fromJson(Map<String, dynamic> json) =>
    ContentPartReasoning(
      text: json['text'] as String,
      signature: json['signature'] as String?,
      providerOptions: json['provider_options'] as Map<String, dynamic>?,
    );