DeleteRequest.fromJson constructor

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

Implementation

factory DeleteRequest.fromJson(Map<String, dynamic> json) {
  return DeleteRequest(
    key: Key.fromJson(json['Key'] as Map<String, dynamic>),
  );
}