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