ResponseKeyMap constructor

const ResponseKeyMap({
  1. String codeKey = 'code',
  2. String msgKey = 'msg',
  3. String dataKey = 'data',
})

Implementation

const ResponseKeyMap({
  this.codeKey = 'code',
  this.msgKey = 'msg',
  this.dataKey = 'data',
});