decoder method

  1. @protected
(dynamic Function(Map<String, dynamic>)?) decoder(
  1. String name
)

Gets the partition fromEncodable function

  • name: The partition name

Implementation

@protected
dynamic Function(Map<String, dynamic>)? decoder(String name) {
  return _fromEncodables[name];
}