AllowedPublishers.fromJson constructor

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

Implementation

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