SelectiveGapicGeneration.fromJson constructor

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

Implementation

factory SelectiveGapicGeneration.fromJson(Map<String, dynamic> json) {
  return SelectiveGapicGeneration(
    methods: decodeList(json['methods']) ?? [],
    generateOmittedAsInternal: json['generateOmittedAsInternal'] ?? false,
  );
}