getFlowByFid static method

MobiPart? getFlowByFid(
  1. MobiRawml rawml,
  2. Uint8List fid
)

Implementation

static MobiPart? getFlowByFid(MobiRawml rawml, Uint8List fid) {
  int partId = base32Decode(fid);
  return getFlowByUid(rawml, partId);
}