decode method

Map<String, dynamic> decode(
  1. BorshSchema schema,
  2. Iterable<int> input
)

Decodes input using schema.

Implementation

Map<String, dynamic> decode(
  final BorshSchema schema,
  final Iterable<int> input,
) => struct(schema).decode(input);