PinpointDestination.fromJson constructor

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

Implementation

factory PinpointDestination.fromJson(Map<String, dynamic> json) {
  return PinpointDestination(
    applicationArn: json['ApplicationArn'] as String?,
  );
}