serialize method

List<List> serialize()

Serializes the access list entry to a list of dynamic objects.

Implementation

List<List<dynamic>> serialize() {
  return [
    address.toBytes(),
    storageKeys.map<List<int>>((e) => BytesUtils.fromHexString(e)).toList(),
  ];
}