SembastStore constructor

SembastStore(
  1. SembastAdapter _adapter, {
  2. dynamic fromEncodable(
    1. Map<String, dynamic>
    )?,
})

Builds a SembastStore.

  • _adapter: The sembast store adapter
  • fromEncodable: A custom function the converts to the object from a Map<String, dynamic> representation

Implementation

SembastStore(this._adapter,
    {dynamic Function(Map<String, dynamic>)? fromEncodable})
    : _fromEncodable = fromEncodable;