Tls.fromJson constructor
Implementation
factory Tls.fromJson(Map<String, dynamic> json) {
return Tls(
certificateAuthorityArnList:
(json['certificateAuthorityArnList'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
);
}