Key constructor

Key({
  1. required int m_iValue,
  2. required String m_strKey,
})

Implementation

Key({
  required this.m_iValue,
  required this.m_strKey,
});