ExternalEventsDetail.fromJson constructor

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

Implementation

factory ExternalEventsDetail.fromJson(Map<String, dynamic> json) {
  return ExternalEventsDetail(
    dataAccessRoleArn: json['dataAccessRoleArn'] as String,
    dataLocation: json['dataLocation'] as String,
  );
}