DescribeTimeToLiveOutput.fromJson constructor

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

Implementation

factory DescribeTimeToLiveOutput.fromJson(Map<String, dynamic> json) {
  return DescribeTimeToLiveOutput(
    timeToLiveDescription: json['TimeToLiveDescription'] != null
        ? TimeToLiveDescription.fromJson(
            json['TimeToLiveDescription'] as Map<String, dynamic>)
        : null,
  );
}