DescribeAccountModificationsResult.fromJson constructor
Implementation
factory DescribeAccountModificationsResult.fromJson(
Map<String, dynamic> json) {
return DescribeAccountModificationsResult(
accountModifications: (json['AccountModifications'] as List?)
?.whereNotNull()
.map((e) => AccountModification.fromJson(e as Map<String, dynamic>))
.toList(),
nextToken: json['NextToken'] as String?,
);
}