getCodePageId method

int getCodePageId(
  1. String codePage
)

Implementation

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