Key.fromJson constructor

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

Implementation

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