RecognitionResponseMetadata.fromJson constructor

RecognitionResponseMetadata.fromJson(
  1. Map json_
)

Implementation

RecognitionResponseMetadata.fromJson(core.Map json_)
    : this(
        totalBilledDuration: json_.containsKey('totalBilledDuration')
            ? json_['totalBilledDuration'] as core.String
            : null,
      );