PutRecordOutput.fromJson constructor
Implementation
factory PutRecordOutput.fromJson(Map<String, dynamic> json) {
return PutRecordOutput(
sequenceNumber: json['SequenceNumber'] as String,
shardId: json['ShardId'] as String,
encryptionType: (json['EncryptionType'] as String?)?.toEncryptionType(),
);
}