FlowLogsConfigurationResult.fromJson constructor

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

Implementation

factory FlowLogsConfigurationResult.fromJson(Map<String, dynamic> json) {
  return FlowLogsConfigurationResult(
    status: (json['status'] as String).toDataSourceStatus(),
  );
}