post method

String post(
  1. dynamic post, {
  2. int doFor = 1,
  3. bool doIf = true,
  4. dynamic between,
  5. dynamic pre,
})

Implementation

String post(
  post, {
  int doFor = 1,
  bool doIf = true,
  between,
  pre,
}) =>
    applyFor(
      doIf == true && post != null ? doFor : 0,
      (s) =>
          (pre?.toString() ?? "") +
          s +
          (between?.toString() ?? "") +
          post!.toString(),
    );