String insert(String ins, String value, int offset) => offset == 0 ? ins + value : value.substring(0, offset) + ins + value.substring(offset);