Tls.fromJson constructor

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

Implementation

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