CommonLanguageSettings.fromJson constructor
Implementation
factory CommonLanguageSettings.fromJson(Map<String, dynamic> json) {
return CommonLanguageSettings(
referenceDocsUri: json['referenceDocsUri'] ?? '',
destinations:
decodeListEnum(
json['destinations'],
ClientLibraryDestination.fromJson,
) ??
[],
selectiveGapicGeneration: decode(
json['selectiveGapicGeneration'],
SelectiveGapicGeneration.fromJson,
),
);
}