ListTagsForResourceResult.fromJson constructor

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

Implementation

factory ListTagsForResourceResult.fromJson(Map<String, dynamic> json) {
  return ListTagsForResourceResult(
    tagList: (json['TagList'] as List?)
        ?.whereNotNull()
        .map((e) => Tag.fromJson(e as Map<String, dynamic>))
        .toList(),
  );
}