DescribeBudgetActionsForAccountResponse.fromJson constructor

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

Implementation

factory DescribeBudgetActionsForAccountResponse.fromJson(
    Map<String, dynamic> json) {
  return DescribeBudgetActionsForAccountResponse(
    actions: (json['Actions'] as List)
        .whereNotNull()
        .map((e) => Action.fromJson(e as Map<String, dynamic>))
        .toList(),
    nextToken: json['NextToken'] as String?,
  );
}