EntityAggregate.fromJson constructor

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

Implementation

factory EntityAggregate.fromJson(Map<String, dynamic> json) {
  return EntityAggregate(
    count: json['count'] as int?,
    eventArn: json['eventArn'] as String?,
  );
}