getCodePageId method

int getCodePageId(
  1. String? codePage
)

Implementation

int getCodePageId(String? codePage) {
  if (codePages.length == 0) {
    throw Exception("The CapabilityProfile isn't initialized");
  }

  return codePages
      .firstWhere((cp) => cp.name == codePage,
          orElse: () => throw Exception(
              "Code Page '$codePage' isn't defined for this profile"))
      .id;
}