toMap method

Map<String, Object> toMap({
  1. dynamic raw = false,
})

Implementation

Map<String, Object> toMap({raw: false}) {
  return {
    "tokenType": tokenType,
    "transactionType": transactionType,
    "data": data.toMap(raw: raw)
  };
}