ListFunctionEventInvokeConfigsResponse.fromJson constructor
ListFunctionEventInvokeConfigsResponse.fromJson(
- Map<String, dynamic> json
)
Implementation
factory ListFunctionEventInvokeConfigsResponse.fromJson(
Map<String, dynamic> json) {
return ListFunctionEventInvokeConfigsResponse(
functionEventInvokeConfigs: (json['FunctionEventInvokeConfigs'] as List?)
?.whereNotNull()
.map((e) =>
FunctionEventInvokeConfig.fromJson(e as Map<String, dynamic>))
.toList(),
nextMarker: json['NextMarker'] as String?,
);
}