HashKeyRange.fromJson constructor

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

Implementation

factory HashKeyRange.fromJson(Map<String, dynamic> json) {
  return HashKeyRange(
    endingHashKey: json['EndingHashKey'] as String,
    startingHashKey: json['StartingHashKey'] as String,
  );
}