ListTagsForResourceResponse.fromJson constructor

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

Implementation

factory ListTagsForResourceResponse.fromJson(Map<String, dynamic> json) {
  return ListTagsForResourceResponse(
    resourceTags: json['resourceTags'] != null
        ? ResourceTags.fromJson(json['resourceTags'] as Map<String, dynamic>)
        : null,
  );
}