getInputSection method

List<PsbtKeyValue> getInputSection(
  1. int index
)

Implementation

List<PsbtKeyValue> getInputSection(int index) {
  final sectionIndex = 1 + index;
  if (sectionIndex < _sections.length) {
    return _sections[sectionIndex];
  }
  return const [];
}