ListStreamProcessorsResponse.fromJson constructor
Implementation
factory ListStreamProcessorsResponse.fromJson(Map<String, dynamic> json) {
return ListStreamProcessorsResponse(
nextToken: json['NextToken'] as String?,
streamProcessors: (json['StreamProcessors'] as List?)
?.whereNotNull()
.map((e) => StreamProcessor.fromJson(e as Map<String, dynamic>))
.toList(),
);
}