fromJSON static method

RecoveryKeyOptionsUse fromJSON(
  1. Map<String, dynamic> data
)
override

Implementation

static RecoveryKeyOptionsUse fromJSON(Map<String, dynamic> data) {
	return RecoveryKeyOptionsUse(
		key: RecoveryDataKey.fromJSON(data["key"])
	);
}